home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / CLRSCR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  227 b   |  15 lines

  1. /* p875.c --- bible */
  2. #include <conio.h>
  3. main()
  4. {
  5.     window(20, 10, 60, 20);
  6. getch();
  7.     textbackground(RED);
  8. getch();
  9.     clrscr();
  10. getch();
  11.     textcolor(YELLOW);
  12.     gotoxy(10, 2);
  13.     cputs("Welcome to Turbo C");
  14. getch();
  15. }